English
Hook to retrieve the email address associated with the connected wallet
import { useSignInEmail } from '@0xsequence/connect'
import { useSignInEmail } from '@0xsequence/connect' function App() { const email = useSignInEmail() return ( <div> <h2>User Information</h2> {email ? ( <div> <p>Connected with email: {email}</p> </div> ) : ( <p>No email associated with connected wallet</p> )} </div> ) }
string | null
string
null
WaasSignInEmail
Was this page helpful?